home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 19
/
Amiga Plus Leser CD 19.iso
/
Online
/
AmigaTalk
/
general
/
Set.st
< prev
next >
Wrap
Text File
|
2000-02-13
|
461b
|
26 lines
Class Set :Collection
! list !
[
new
list <- List new
|
add: newElement
(list includes: newElement)
ifFalse: [list add: newElement]
|
remove: oldElement ifAbsent: exceptionBlock
list remove: oldElement ifAbsent: exceptionBlock
|
size
^ list size
|
occurrencesOf: anElement
^ (list includes: anElement) ifTrue: [1] ifFalse: [0]
|
first
^ list first
|
next
^ list next
]